home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 September / Designer's Club 1997 September.iso / pc / IDEASRC / Main.DIR / 00001.ls next >
Encoding:
Text File  |  1997-08-01  |  618 b   |  34 lines

  1. on exitFrame
  2.   go(the frame)
  3.   cursor(200)
  4.   set the locH of sprite 10 to the mouseH
  5.   set the locV of sprite 10 to the mouseV
  6.   if sprite 10 intersects 2 then
  7.     go("atyou")
  8.   end if
  9. end
  10.  
  11. on keyDown
  12.   if the key = 1 then
  13.     set the soundLevel to 1
  14.   end if
  15.   if the key = 2 then
  16.     set the soundLevel to 2
  17.   end if
  18.   if the key = 3 then
  19.     set the soundLevel to 3
  20.   end if
  21.   if the key = 4 then
  22.     set the soundLevel to 4
  23.   end if
  24.   if the key = 5 then
  25.     set the soundLevel to 5
  26.   end if
  27.   if the key = 6 then
  28.     set the soundLevel to 6
  29.   end if
  30.   if the key = 7 then
  31.     set the soundLevel to 7
  32.   end if
  33. end
  34.